From 3acd35a03161ac8523a152a53ea08e8d9befdd6d Mon Sep 17 00:00:00 2001 From: "leendert@watson.ibm.com[kaf24]" Date: Fri, 27 May 2005 08:36:13 +0000 Subject: [PATCH] bitkeeper revision 1.1573 (4296dbfdboYgUQZDJC6lNdNzKGXKag) [PATCH] [PATCH] ioemu device-model ignores variables Trivial patch. The device-model wrapper ignores cdrom and boot variables. This patch adds them. Signed-Off-By: Leendert van Doorn --- tools/ioemu/target-i386-dm/device-model | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tools/ioemu/target-i386-dm/device-model b/tools/ioemu/target-i386-dm/device-model index d5deab7539..a7f5e3838f 100755 --- a/tools/ioemu/target-i386-dm/device-model +++ b/tools/ioemu/target-i386-dm/device-model @@ -54,6 +54,14 @@ if [ ! -z $hdd ];then PARMETER="$PARMETER -hdd $hdd" fi +if [ ! -z $cdrom ];then +PARMETER="$PARMETER -cdrom $cdrom" +fi + +if [ ! -z $boot ];then +PARMETER="$PARMETER -boot $boot" +fi + if [ ! -z $nographic ] && [ $nographic -eq 1 ];then PARMETER="$PARMETER -nographic" fi -- 2.30.2